Search
XmlSerializationContext.WriteDoubleArray Method
See Also
 






Writes the specified array.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public XElement WriteDoubleArray (
    double[] array,
    string elementName,
    string subElementName,
    XElement parentElement
)

Visual Basic  Copy Code

Public Function WriteDoubleArray( _
    array() As Double, _
    elementName As String, _
    subElementName As String, _
    parentElement As XElement _
) As XElement

 Parameters

array

The array to write.

elementName

The name of the element under which the array should be written.

subElementName

The name of the XML elements under which the individual array values will be written.

parentElement

The parent element of the newly created node.

 Return Value

An instance of the XElement class representing the newly created XML element.

 See Also